home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / PInterfaces / TSMTE.p < prev    next >
Text File  |  1996-05-01  |  3KB  |  131 lines

  1. {
  2.      File:        TSMTE.p
  3.  
  4.      Contains:    Text Services Managerfor TextEdit Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. }
  18. {$IFC UNDEFINED UsingIncludes}
  19. {$SETC UsingIncludes := 0}
  20. {$ENDC}
  21.  
  22. {$IFC NOT UsingIncludes}
  23.  UNIT TSMTE;
  24.  INTERFACE
  25. {$ENDC}
  26.  
  27. {$IFC UNDEFINED __TSMTE__}
  28. {$SETC __TSMTE__ := 1}
  29.  
  30. {$I+}
  31. {$SETC TSMTEIncludes := UsingIncludes}
  32. {$SETC UsingIncludes := 1}
  33.  
  34. {$IFC UNDEFINED __TEXTEDIT__}
  35. {$I TextEdit.p}
  36. {$ENDC}
  37. {$IFC UNDEFINED __DIALOGS__}
  38. {$I Dialogs.p}
  39. {$ENDC}
  40. {$IFC UNDEFINED __APPLEEVENTS__}
  41. {$I AppleEvents.p}
  42. {$ENDC}
  43. {$IFC UNDEFINED __TEXTSERVICES__}
  44. {$I TextServices.p}
  45. {$ENDC}
  46. {  #include <Gestalt.i> }
  47.  
  48. {$PUSH}
  49. {$ALIGN MAC68K}
  50. {$LibExport+}
  51.  
  52. {$IFC FOR_SYSTEM7_AND_SYSTEM8_COOPERATIVE }
  53. {  signature, interface types }
  54.  
  55. CONST
  56.     kTSMTESignature                = 'tmTE';
  57.     kTSMTEInterfaceType            = 'tmTE';
  58.     kTSMTEDialog                = 'tmDI';
  59.  
  60. {  update flag for TSMTERec }
  61.     kTSMTEAutoScroll            = 1;
  62.  
  63. {  callback procedure definitions }
  64.  
  65. TYPE
  66.     TSMTEPreUpdateProcPtr = ProcPtr;  { PROCEDURE TSMTEPreUpdate(textH: TEHandle; refCon: LONGINT); }
  67.  
  68.     TSMTEPostUpdateProcPtr = ProcPtr;  { PROCEDURE TSMTEPostUpdate(textH: TEHandle; fixLen: LONGINT; inputAreaStart: LONGINT; inputAreaEnd: LONGINT; pinStart: LONGINT; pinEnd: LONGINT; refCon: LONGINT); }
  69.  
  70.     TSMTEPreUpdateUPP = UniversalProcPtr;
  71.     TSMTEPostUpdateUPP = UniversalProcPtr;
  72. {  data types }
  73.     TSMTERecPtr = ^TSMTERec;
  74.     TSMTERec = RECORD
  75.         textH:                    TEHandle;
  76.         preUpdateProc:            TSMTEPreUpdateUPP;
  77.         postUpdateProc:            TSMTEPostUpdateUPP;
  78.         updateFlag:                LONGINT;
  79.         refCon:                    LONGINT;
  80.     END;
  81.  
  82.     TSMTERecHandle                        = ^TSMTERecPtr;
  83.  
  84. CONST
  85.     uppTSMTEPreUpdateProcInfo = $000003C0;
  86.     uppTSMTEPostUpdateProcInfo = $000FFFC0;
  87.  
  88. FUNCTION NewTSMTEPreUpdateProc(userRoutine: TSMTEPreUpdateProcPtr): TSMTEPreUpdateUPP;
  89.     {$IFC NOT GENERATINGCFM }
  90.     INLINE $2E9F;
  91.     {$ENDC}
  92.  
  93. FUNCTION NewTSMTEPostUpdateProc(userRoutine: TSMTEPostUpdateProcPtr): TSMTEPostUpdateUPP;
  94.     {$IFC NOT GENERATINGCFM }
  95.     INLINE $2E9F;
  96.     {$ENDC}
  97.  
  98. PROCEDURE CallTSMTEPreUpdateProc(textH: TEHandle; refCon: LONGINT; userRoutine: TSMTEPreUpdateUPP);
  99.     {$IFC NOT GENERATINGCFM}
  100.     INLINE $205F, $4E90;
  101.     {$ENDC}
  102.  
  103. PROCEDURE CallTSMTEPostUpdateProc(textH: TEHandle; fixLen: LONGINT; inputAreaStart: LONGINT; inputAreaEnd: LONGINT; pinStart: LONGINT; pinEnd: LONGINT; refCon: LONGINT; userRoutine: TSMTEPostUpdateUPP);
  104.     {$IFC NOT GENERATINGCFM}
  105.     INLINE $205F, $4E90;
  106.     {$ENDC}
  107. {$ENDC}
  108. {$IFC NOT FOR_OPAQUE_SYSTEM_DATA_STRUCTURES }
  109.  
  110. TYPE
  111.     TSMDialogRecordPtr = ^TSMDialogRecord;
  112.     TSMDialogRecord = RECORD
  113.         fDialog:                DialogRecord;
  114.         fDocID:                    TSMDocumentID;
  115.         fTSMTERecH:                TSMTERecHandle;
  116.         fTSMTERsvd:                ARRAY [0..2] OF LONGINT;                {  reserved }
  117.     END;
  118.  
  119.     TSMDialogPeek                        = ^TSMDialogRecord;
  120. {$ENDC}
  121. {$ALIGN RESET}
  122. {$POP}
  123.  
  124. {$SETC UsingIncludes := TSMTEIncludes}
  125.  
  126. {$ENDC} {__TSMTE__}
  127.  
  128. {$IFC NOT UsingIncludes}
  129.  END.
  130. {$ENDC}
  131.